home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 108 / MacAddict108.iso / Software / Development / BBEdit 8.2.1 demo.dmg / BBEdit.app / Contents / Resources / Default Support Folder / HTML Templates / Include Example.tmpl < prev    next >
Encoding:
Text File  |  2005-05-10  |  1.1 KB  |  52 lines

  1. <!--
  2.     This example illustrates the use of the #include directive. You can
  3.     include HTML source code by reference into another file, rather than
  4.     having to copy and paste (and deal with the headaches of keeping
  5.     all of your HTML code in sync.
  6. -->
  7.  
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  9.         "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
  10. <html>
  11. <head>
  12.  
  13. <title>#TITLE#</title>
  14. <!--
  15. Created:    #COMPDATE#
  16. By:            #USERNAME#
  17. Where:        #ROOT##FILENAME#
  18. -->
  19.  
  20. <!-- #bbinclude "baseURL.incl" -->
  21. <!-- end bbinclude -->
  22.  
  23. </head>
  24. <body>
  25. <!--
  26.     When creating a page from this template, the "USERNAME" string will
  27.     be replaced with the user name that you entered in the "Sharing Setup"
  28.     control panel.
  29. -->
  30.  
  31. <title>#USERNAME#'s First Page</title>
  32.  
  33.  
  34. </head>
  35. <body>
  36.  
  37. <h1>#USERNAME#'s First Page</h1>
  38. <p>
  39. This example was <a href="http://www.barebones.com/products/bbedit/builtwith.html">Built With BBEdit</a>.<br>
  40. To find out more about BBEdit, <a href="http://www.barebones.com">visit Bare Bones Software's Web site</a>.
  41. </p>
  42.  
  43.  
  44. #BODYTEXT#
  45.  
  46.  
  47. <!-- #bbinclude "footer.incl" -->
  48. <!-- end bbinclude -->
  49.  
  50. </body>
  51. </html>
  52.